{% extends "base.html" %} {% block title %}{{ test.title }}{% endblock %} {% block content %}

{{ test.title }}

{{ test.description or 'Описание отсутствует' }}

  • Вопросов: {{ test.questions|length }}
  • Перемешивание вопросов: {{ 'да' if test.shuffle_questions else 'нет' }}
  • Перемешивание ответов: {{ 'да' if test.shuffle_answers else 'нет' }}
  • Лимит времени: {% if test.time_limit_minutes %} {{ test.time_limit_minutes }} мин {% else %} без ограничений {% endif %}
{% if completed_attempts %}
Завершённых попыток: {{ completed_attempts }}
{% endif %} {% if latest_attempt and latest_attempt.completed_at %}
Последняя попытка: {{ latest_attempt.completed_at.strftime('%d.%m.%Y %H:%M') }}, оценка {{ latest_attempt.score }}
{% endif %}
{{ form.hidden_tag() }} {{ form.submit(class="btn btn-primary") }}
Назад
{% endblock %}